home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997 September / Macworld (1997-09).dmg / Serious Software / Cherwell Scientific Demos / pro Fit / pro Fit 5.0 demo (fpu).sea / pro Fit 5.0 demo (fpu) / Functions & Programs / •Gadgets / Covar. Matrix -> Data Window < prev    next >
Text File  |  1996-06-02  |  765b  |  26 lines

  1. {
  2.  this programs writes the covariance matrix of the last
  3.  fit in the top left corner of the frontmost data window.
  4.  (Row and column numbers correspond to parameter indices.)
  5.  It also writes the parameter values resulting from the fit and
  6.  their standard deviation in two lines below the covariance matrix,
  7.  with an empty line as a separation.
  8.  On the last line it writes the value of chi-squared.
  9. }
  10.  
  11. program FitInformationToDataWindow;
  12. var i,j,k:integer;
  13. begin
  14.  NewWindow(dataType);
  15.  k:=numFitParams;
  16.  if k>0 then
  17.  begin
  18.         for i:=1 to  k do
  19.          for j:=1 to  k do
  20.                 data[i,j]:= CovarMatrix(i,j);
  21.         for i:=1 to k do    ClearData(k+1,i);
  22.         for i:=1 to k do data[k+2,i]:=FittedParams(i);
  23.         for i:=1 to k do data[k+3,i]:=ParamSD(i); 
  24.         data[k+4,1]:=chiSquared;
  25.  end;
  26. end;